home *** CD-ROM | disk | FTP | other *** search
- 10 rem turtle boot
- 20 poke 53281, 6
- 30 print chr$(147); chr$(154) tab(10) "turtle graphics boot": print: print
- 40 print "this program will load and run the"
- 50 print "turtle data and interpreter programs.": print
- 60 print "while they are loading the screen will"
- 70 print "blank.": print
- 80 print "do not remove the disk until the"
- 90 print "interpreter prompts you for your first"
- 100 print "command.": print: print: poke 198, 0
- 110 print "press " chr$(18) "space" chr$(146) " when ready"
- 120 geta$: if a$="" then 120
- 130 q$=chr$(34): d$=chr$(17)
- 140 print chr$(147); chr$(31); d$; d$; d$ "poke 16384, 0: poke 44, 64: new"
- 150 print d$; d$ "load" q$ "turtle graphic 2" q$ ",8"
- 160 print d$; d$; d$; d$; d$ "run"
- 170 print d$; d$ "load" q$ "turtle graphic 1" q$ ",8"
- 180 print d$; d$; d$; d$; d$ "run" chr$(19)
- 190 for k= 1 to 7: poke 630+k, 13: next: poke 198, 7
-